home *** CD-ROM | disk | FTP | other *** search
/ Suzy B Software 2 / Suzy B Software CD-ROM 2 (1994).iso / extras / programm / gemfsc19 / gemfsc19.lzh / GEMFUNCS / EVNXTIME.C < prev    next >
C/C++ Source or Header  |  1993-04-21  |  385b  |  13 lines

  1. /**************************************************************************
  2.  * EVNXTIME.C -  Extended evnt_timer() routine...
  3.  *************************************************************************/
  4.  
  5. #include "gemfintl.h"
  6.  
  7. short evnx_timer(milliseconds)
  8.     unsigned long milliseconds;
  9. {
  10.     return evnt_timer((short)(milliseconds&0xFFFF),(short)(milliseconds>>16));
  11. }
  12.  
  13.